home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 March / EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso / earcd / music / omdpt123.lha / OMED_PT123.lzx / rexx / Killtrack.omed < prev    next >
Text File  |  1980-02-28  |  498b  |  27 lines

  1. /* Kill track - Case 18-10-95 */
  2.  
  3. address OCTAMED_REXX
  4. options results
  5.  
  6. 'wi_request "Kill track?" "Full track|Only following notes|Cancel"'; answer = result
  7. if answer ~= 0
  8.     then do
  9.     if answer = 2
  10.         then do
  11.             'op_update off'
  12.             'ed_killnotes currtrack'
  13.             'op_update on'
  14.             'wi_showstring KILLED'
  15.             exit
  16.         end
  17.     else do
  18.         'op_update off'
  19.         'ed_getcurrline var currline'
  20.         'ed_goto line 0'
  21.         'ed_killnotes currtrack'
  22.         'ed_goto line' currline
  23.         'op_update on'
  24.         'wi_showstring KILLED'
  25.     end
  26. else
  27. exit